
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root{
--navy:#061a40;
--navy-light:#0d2c6c;
--blue:#2563eb;
--blue-light:#60a5fa;
--green:#10b981;
--green-light:#34d399;
--white:#ffffff;
--text:#334155;
--bg:#f4f9ff;
}

*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

body{
font-family:'Poppins',sans-serif;
background:linear-gradient(180deg,#f8fbff,#edf6ff);
color:var(--text);
line-height:1.8;
overflow-x:hidden;
}

/* Floating CTA */

.sticky-apply{
position:fixed;
right:25px;
bottom:25px;
z-index:999;
padding:16px 28px;
border-radius:50px;
background:linear-gradient(135deg,var(--blue),var(--green));
color:white;
font-weight:700;
text-decoration:none;
box-shadow:0 15px 35px rgba(37,99,235,.25);
transition:.35s;
}

.sticky-apply:hover{
transform:translateY(-5px) scale(1.03);
}

/* Hero */

.hero{
min-height:85vh;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
padding:40px;
background:linear-gradient(rgba(6,26,64,.94),rgba(6,26,64,.94));
position:relative;
overflow:hidden;
}

.hero::before{
content:'';
position:absolute;
width:650px;
height:650px;
border-radius:50%;
background:rgba(37,99,235,.18);
filter:blur(120px);
left:-200px;
top:-200px;
}

.hero::after{
content:'';
position:absolute;
width:550px;
height:550px;
border-radius:50%;
background:rgba(16,185,129,.15);
filter:blur(120px);
right:-180px;
bottom:-180px;
}

.hero-content{
max-width:950px;
position:relative;
z-index:2;
}

.badge{
display:inline-block;
padding:12px 24px;
border-radius:50px;
background:rgba(255,255,255,.12);
color:#dbeafe;
margin-bottom:25px;
font-weight:600;
}

.hero h1{
font-size:72px;
line-height:1.1;
color:white;
margin-bottom:20px;
font-weight:800;
}

.hero p{
font-size:22px;
color:#dbeafe;
max-width:800px;
margin:auto;
}

/* Trust Bar */

.trust-bar{
max-width:1200px;
margin:-55px auto 40px;
padding:0 20px;
display:grid;
grid-template-columns:repeat(4,1fr);
gap:20px;
position:relative;
z-index:5;
}

.trust-bar div{
background:white;
padding:25px;
text-align:center;
border-radius:22px;
font-weight:700;
box-shadow:0 15px 35px rgba(0,0,0,.08);
transition:.3s;
}

.trust-bar div:hover{
transform:translateY(-5px);
}

/* Container */

.container{
max-width:1200px;
margin:auto;
padding:0 20px 80px;
}

section{
background:white;
padding:45px;
border-radius:28px;
margin-bottom:30px;
box-shadow:0 12px 35px rgba(0,0,0,.05);
transition:.3s;
}

section:hover{
box-shadow:0 18px 45px rgba(0,0,0,.08);
}

section h2{
font-size:38px;
color:var(--navy);
margin-bottom:20px;
font-weight:800;
}

section h2::after{
content:'';
display:block;
width:90px;
height:4px;
margin-top:10px;
border-radius:30px;
background:linear-gradient(90deg,var(--blue),var(--green));
}

p{
margin-bottom:18px;
}

ol,ul{
padding-left:25px;
}

li{
margin-bottom:10px;
}

/* Cards */

.cards{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:24px;
margin-top:25px;
}

.card{
padding:28px;
border-radius:22px;
background:linear-gradient(180deg,#ffffff,#f7fbff);
border:1px solid #e5eefc;
transition:.35s;
}

.card:hover{
transform:translateY(-8px);
box-shadow:0 20px 40px rgba(37,99,235,.15);
}

.card h3{
color:var(--navy);
margin-bottom:10px;
font-size:22px;
}

/* FAQ */

h3{
color:var(--navy);
margin:20px 0 10px;
}

/* CTA */

.cta{
text-align:center;
background:linear-gradient(135deg,var(--navy),var(--navy-light));
color:white;
position:relative;
overflow:hidden;
}

.cta::before{
content:'';
position:absolute;
width:350px;
height:350px;
border-radius:50%;
background:rgba(37,99,235,.15);
filter:blur(80px);
left:-100px;
top:-100px;
}

.cta h2{
color:white;
}

.cta h2::after{
display:none;
}

.cta p{
max-width:700px;
margin:0 auto 25px;
}

.cta a{
display:inline-block;
padding:16px 34px;
border-radius:50px;
background:linear-gradient(135deg,var(--green),var(--green-light));
color:white;
text-decoration:none;
font-weight:700;
transition:.3s;
}

.cta a:hover{
transform:translateY(-4px);
}

/* Mobile */

@media(max-width:900px){

.hero h1{
font-size:48px;
}

.hero p{
font-size:18px;
}

.trust-bar{
grid-template-columns:repeat(2,1fr);
}

section{
padding:30px;
}

section h2{
font-size:30px;
}
}

@media(max-width:600px){

.hero h1{
font-size:36px;
}

.trust-bar{
grid-template-columns:1fr;
}

.sticky-apply{
padding:12px 18px;
font-size:14px;
}

section{
padding:24px 18px;
}
}
